home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / ugly / hello.c < prev    next >
C/C++ Source or Header  |  1996-05-18  |  182b  |  12 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main( void )
  5. {
  6.     char *hugo = "hugo was here.";
  7. /*    char *next = strtok( hugo, " " );*/
  8.  
  9.     printf( "hello.\n" );
  10.     return( 0 );
  11. }
  12.